home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / TOOLS / XSOURCE / XSOURCE.ZIP / vfpsource / Coverage / COV_SPEC.H < prev    next >
Encoding:
Text File  |  1998-05-01  |  1.1 KB  |  34 lines

  1. * COV_SPEC.H
  2. * Constants required by current Coverage app specifications
  3.  
  4. #DEFINE COV_COMPILED_IN_VFP5       ( "PRO 05." $ UPPER(VERSION()) )
  5.  
  6. #DEFINE COV_MESSAGE_LIMIT           254
  7. * used to trim WAIT WINDOW messages to the legal limit
  8.  
  9. * FRX Object Types:
  10. #DEFINE N_FRX_DATAENVIRONMENT_OBJTYPE    25
  11. #DEFINE N_FRX_CURSOR_RELATION_OBJTYPE    26
  12.  
  13. * Mouse Pointers:
  14. #DEFINE MOUSEPOINTER_ARROW_UP        10
  15. #DEFINE MOUSEPOINTER_HOURGLASS       11
  16. #DEFINE MOUSEPOINTER_ARROW_EW        9
  17. #DEFINE MOUSEPOINTER_SIZE_NS         7
  18. #DEFINE MOUSEPOINTER_DEFAULT         0
  19.  
  20. * set by format of internally-created log:
  21. #DEFINE N_COVLOG_FIELDCOUNT_V5       5
  22. #DEFINE N_COVLOG_FIELDCOUNT_V6       6
  23.  
  24. #DEFINE COV_LOG_DELIMITER            ,
  25. * comma, at least so far!
  26. * and you can't use CHR(44) or any other
  27. * variant thereof, that I can find...
  28.  
  29. * currently required:
  30. #DEFINE COV_IGNORE_COVERAGE_FILES     .T.
  31. #DEFINE COV_KNOWN_ALIAS_PROPERTIES    "SOURCE","TARGET","SKIPPED","COVFILES","PROJECT"
  32. #DEFINE COV_KNOWN_PJX_TYPES           "K","V","P","M","Q","R","B","F","d"
  33. #DEFINE COV_BASE_CLASSLIB             "COVERAGE.VCX"
  34.